iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 5
1
AI & Data

資資不倦系列 第 5

Day4 決策樹介紹

  • 分享至 

  • xImage
  •  

決策樹
大綱:決策論中,決策樹由一個決策圖和可能的結果組成, 用來創建到達目標的規劃。決策樹建立並用來輔助決策,是一種特殊的樹結構。決策樹是一個利用像樹一樣的圖形或決策模型的決策支持工具,包括隨機事件結果,資源代價和實用性。它是一個算法顯示的方法。決策樹經常在運籌學中使用,特別是在決策分析中,它幫助確定一個能最可能達到目標的策略。
https://ithelp.ithome.com.tw/upload/images/20200914/20129894XDaUO9osDr.png

{從數據庫中導入所需工具}

import numpy as np (解析資料)
import matplotlib.pyplot as plt (圖表呈現)
import pandas as pd (計算工具)

{設置工作路徑}
<右側的files,連結到檔案所屬的路徑>

{導入所需數據}

dataset = pd.read_csv('Social_Network_Ads.csv')
X = dataset.iloc[:, [2,3]].values
y = dataset.iloc[:, 4].values

https://ithelp.ithome.com.tw/upload/images/20200914/20129894b3P9Rx6T2b.png

{將資料分成訓練集以及測試集}

from sklearn.model_selection import train_test_split
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 0.25, random_state = 0)

{特徵縮放}
<當資料需要找出關聯,但數據差過大時,利用特徵縮放讓數據呈現在同水平>

Feature Scaling

from sklearn.preprocessing import StandardScaler
sc_X = StandardScaler()
X_train = sc_X.fit_transform(X_train)
X_test = sc_X.transform(X_test)

*y不用特徵縮放, 因為它只有0跟1
https://ithelp.ithome.com.tw/upload/images/20200914/20129894okRvGR3BQv.png

{利用訓練集讓機器開始學習}

Fitting decision tree to the Training set(擬和)

from sklearn.tree import DecisionTreeClassifier
classifier = DecisionTreeClassifier(criterion='entropy',random_state= 0)
classifier.fit(X_train, y_train)

{利用擬和器開始預測}

Predicting the Test set results

y_pred = classifier.predict(X_test)

{利用混淆矩陣檢測錯誤樣本數}

Making the Confusion Matrix

from sklearn.metrics import confusion_matrix
cm = confusion_matrix(y_test, y_pred)

https://ithelp.ithome.com.tw/upload/images/20200914/201298943rNn9PQMCZ.png

{將結果以圖表成呈現}(訓練集)

Visualising the Training set results(圖像化)

from matplotlib.colors import ListedColormap
X_set, y_set = X_train, y_train
X1, X2 = np.meshgrid(np.arange(start = X_set[:, 0].min() - 1, stop = X_set[:, 0].max() + 1, step = 0.01),
                     np.arange(start = X_set[:, 1].min() - 1, stop = X_set[:, 1].max() + 1, step = 0.01))
plt.contourf(X1, X2, classifier.predict(np.array([X1.ravel(), X2.ravel()]).T).reshape(X1.shape),
             alpha = 0.75, cmap = ListedColormap(('red', 'green')))
plt.xlim(X1.min(), X1.max())
plt.ylim(X2.min(), X2.max())
for i, j in enumerate(np.unique(y_set)):
    plt.scatter(X_set[y_set == j, 0], X_set[y_set == j, 1],
                c = ListedColormap(('orange', 'blue'))(i), label = j)
plt.title('Decision tree (Training set)')
plt.xlabel('Age')
plt.ylabel('Estimated Salary')
plt.legend()
plt.show()

https://ithelp.ithome.com.tw/upload/images/20200914/20129894LjlGZO5d8j.png

{將結果以圖表成呈現}(測試集)

Visualising the Test set results

from matplotlib.colors import ListedColormap
X_set, y_set = X_test, y_test
X1, X2 = np.meshgrid(np.arange(start = X_set[:, 0].min() - 1, stop = X_set[:, 0].max() + 1, step = 0.01),
                     np.arange(start = X_set[:, 1].min() - 1, stop = X_set[:, 1].max() + 1, step = 0.01))
plt.contourf(X1, X2, classifier.predict(np.array([X1.ravel(), X2.ravel()]).T).reshape(X1.shape),
             alpha = 0.75, cmap = ListedColormap(('red', 'green')))
plt.xlim(X1.min(), X1.max())
plt.ylim(X2.min(), X2.max())
for i, j in enumerate(np.unique(y_set)):
    plt.scatter(X_set[y_set == j, 0], X_set[y_set == j, 1],
                c = ListedColormap(('orange', 'blue'))(i), label = j)
plt.title('Decision tree (Test set)')
plt.xlabel('Age')
plt.ylabel('Estimated Salary')
plt.legend()
plt.show()

https://ithelp.ithome.com.tw/upload/images/20200914/20129894EOlsuSa0Lb.png


上一篇
Day3
下一篇
Day5 隨機森林
系列文
資資不倦8
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言